home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue71
/
Stack
/
Fast_Construction_and_Destruction.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2001-04-19
|
322 b
|
17 lines
program Fast_Construction_and_Destruction;
uses
Forms,
WMain in 'WMain.pas' {FMain},
FastObjects in 'FastObjects.pas',
PSTimer in 'PSTimer.pas',
TraceableClass in 'TraceableClass.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFMain, FMain);
Application.Run;
end.